home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / hunt103.zip / HUNT.ZIP / HLOCS / HTRAIN.LOC < prev    next >
Text File  |  1995-07-06  |  3KB  |  64 lines

  1. // BASIC EXP/LEVEL/TRAIN LAYOUT  (HTRAIN.ORG)
  2. // NOTES ON FORMAT:
  3. //   No line should be longer than 120 characters in length anywhere in here
  4. //   Standard ANSI color and graphics are allowed in location descriptions
  5. //   NAME <...> at the top of this file is currently not being used
  6. //   DESCRIPTION_NAME is the name of the area the player is shown
  7. //    - After DESCRIPTION_NAME, leave a blank space
  8. //    - Everything after the blank space to the end of the line is yours
  9. //   Start and end each location with BEGIN/END_LOCATION
  10. //   TYPE refers to the type of map location this is: MAP, SHOP, MEDICAL, etc.
  11. //    - After TYPE, leave a blank space, then the one word map location type
  12. //   COST is used if the location has some service for sale
  13. //    - After COST, leave a blank space, and have an integer
  14. //    - The integer is used differently depending on the location.
  15. //      ie: 2 per hit point per level, or 100 per level for a room
  16. //   FILE is used if a map location needs a file (ie: a shop needs a list)
  17. //    - If the type requires a file, the filename follows after a blank
  18. //   Start and end each description with BEGIN/END_DESCRIPTION
  19. //    - Everything between the start and end is displayed as is
  20. //    - To have ANSI gfx and color, just use standard ANSI format
  21. //    - Terminate each line with a standard C/R (\n); don't go past 80 columns
  22. //   Start and end each direction list with BEGIN/END_DIRECTION
  23. //    - The first character on each line represents the "direction" available
  24. //    - There should be a space followed by the a file-name and another space
  25. //    - The file-name should be that of another file like this one containing
  26. //        the description of the area a player is currently at
  27. //    - The file-name must be one word only, CAPS aren't a must but I use 'em
  28. //    - HHARD is a reserved file-name corresponding with hard-coded locations
  29. //        Don't use it unless you actually want to include this type
  30. //    - The rest of the line is the location corresponding with that direction
  31. //    - Spaces are allowed in the location name
  32.  
  33. NAME HTRAIN
  34. //---------------------------------------------------------------------------
  35. BEGIN_LOCATION City Training Center
  36. TYPE TRAIN
  37. MAP HWALL.MAP
  38.  
  39. BEGIN_DESCRIPTION
  40.    Small private rooms, large enough for two at most, line the halls of this
  41. training center.  Most of them are empty and ready for anyone [A]ttempting
  42. training or just wanting to lookover their training [S]tatus, but a few doors
  43. remain closed.
  44.    An attractive woman with short-cut hair wearing a tight-fitting training
  45. uniform is going over some notes laid out on a desk before her.  She looks up
  46. at you, smiles, then looks back down waiting for you to go [T]alk to her.
  47. END_DESCRIPTION
  48.  
  49. BEGIN_TALK_TEXT
  50.    The training officer smiles as you approach her desk.  "Thinking of doing
  51. some training?  Give it a shot!  At best, you'll pick up a few skills and at
  52. worst, nothing!  All training for exterminators is free, courtesy of the city."
  53. She straightens her uniform a bit, then continues.  "Shall I book you a room
  54. then?"
  55. END_TALK_TEXT
  56.  
  57. BEGIN_DIRECTIONS
  58. [R]eturn - HWALL West Wall
  59. END_DIRECTIONS
  60.  
  61. END_LOCATION City Training Center
  62.  
  63. //---------------------------------------------------------------------------
  64.